home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / Includes / PMPlugin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-18  |  1.0 KB  |  43 lines  |  [TEXT/CWIE]

  1. /*
  2.  *--- PageMaker.h ----------------------------------------------
  3.  * Copyright (c) 1995 Adobe Systems, Inc.  All rights reserved.
  4.  *
  5.  * This contains the common .h files for a PageMaker plug-in.
  6.  *
  7.  * $Revision:   1.2  $
  8.  *
  9.  *
  10.  *--------------------------------------------------------------
  11.  */
  12. #ifndef __PageMaker__
  13. #define __PageMaker__
  14.  
  15. #include "PMTypes.h"
  16. #include "PMCommands.h"
  17. #include "PMQueries.h"
  18. #include "PMUtils.h"
  19. #include "PMMemory.h"
  20. #include "PMKeywords.h"
  21.  
  22. #ifndef __cplusplus
  23.        // #include "PMUtils.h"    // this replaces the obsolete PageMakerPBMacros.h
  24.     
  25. #else
  26.     // Try the new PageMaker Class Library!
  27. #endif
  28.  
  29. // Most plug-ins will need these error codes
  30. #include "PMCQErrs.h"
  31.  
  32. // You probably won't need these error codes
  33. #if 0
  34.     #include "PageMakerDialogErrs.h"
  35.     #include "PageMakerFileErrs.h"
  36.     #include "PageMakerImpExpErrs.h"
  37.     #include "PageMakerPrinterErrs.h"
  38.     #include "PageMakerTextErrs.h"
  39.     #include "PageMakerMiscErrs.h"
  40. #endif
  41.  
  42. #endif  // __PageMaker__
  43.